"use client"; import { useParams } from "next/navigation"; import { FC, PropsWithChildren } from "react"; interface Props {} const GameListFlag: FC> = (props) => { const params = useParams(); console.log(`🎯🎯🎯🎯🎯-> in page.tsx on 10`, params); return
hello React
; }; export default GameListFlag;